home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 29
/
CDT29.iso
/
e-Mail
/
WorldClient Pro 2.2.3
/
wcsetup.exe
/
WEBHELP.CAB
/
MethodRunner.class
(
.txt
)
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1999-10-21
|
400 b
|
18 lines
import java.awt.Window;
class MethodRunner extends Thread {
Window m_winToShow;
public MethodRunner(Window var1, String var2) {
super(var2);
this.m_winToShow = var1;
}
public void run() {
if (this.m_winToShow != null) {
this.m_winToShow.show();
}
}
}